home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / nortutil.zip / src / TaxLaw / rnd.c < prev    next >
Text File  |  1996-08-28  |  289b  |  11 lines

  1. /*************************************************************************
  2. FUNCTION:       RND
  3.  
  4. PURPOSE:        return a random number less than n
  5. ***************************************************************************/
  6. rnd(n)
  7. int n;
  8. {
  9.     return(((rand() & 0x7FFF) % n));
  10. }
  11.